/*!**********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20231114_cnrRevision/scss/lib/animate.css ***!
  \**********************************************************************************************************************************************************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*!*****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/20231114_cnrRevision/javascript/plugins/swiper2/idangerous.swiper.css ***!
  \*****************************************************************************************************************************/
/*
 * Swiper 2.7.6
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: February 11, 2015
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	direction:ltr;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	/*width:200px;
	height: 100px;*/
}
.swiper-slide {
	/* Specify Slides's Size: */
	
	/*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
	/* Specific active slide styling: */
	
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */	

}
.swiper-active-switch {
	/* Specific active button style: */	
	
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	
}

/*!*****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20231114_cnrRevision/scss/index.scss ***!
  \*****************************************************************************************************************************************************************************/
@charset "UTF-8";
/* By Athlon Front-End Team */
/* Core variables */
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Paths */
/* Grid setup */
/* Colour palette */
/*$light-gray: rgba(0,0,0,0.3);*/
/*$font-family-siyuan: Noto Sans, STHeiti, Microsoft YaHei, SimHei, Heiti SC, sans-serif;*/
/* Components */
/* CSS Reset */
body {
  font-family: "宋体", SimSun, Songti SC, STSong, sans-serif;
}

a {
  color: #000000;
}
a:hover {
  text-decoration: none;
  color: #a01727;
}

.ml26 {
  margin-left: 26px;
}

.ml30 {
  margin-left: 30px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb12 {
  margin-bottom: 12px;
}

.mb17 {
  margin-bottom: 17px;
}

.mr10 {
  margin-right: 10px;
}

.mr16 {
  margin-right: 16px;
}

.mt26 {
  margin-top: 26px;
}

.mt5 {
  margin-top: 5px;
}

.mt7 {
  margin-top: 7px;
}

.mt10 {
  margin-top: 10px;
}

.mt13 {
  margin-top: 13px;
}

.mt15 {
  margin-top: 15px;
}

.mt25 {
  margin-top: 25px;
}

.ml28 {
  margin-left: 28px;
}

.pt3 {
  padding-top: 3px;
}

.pt4 {
  padding-top: 4px;
}

.pt5 {
  padding-top: 5px;
}

.pt6 {
  padding-top: 6px;
}

.pt7 {
  padding-top: 7px;
}

.pt8 {
  padding-top: 8px;
}

.pt9 {
  padding-top: 9px;
}

.pt10 {
  padding-top: 10px;
}

.pt11 {
  padding-top: 11px;
}

.pt12 {
  padding-top: 12px;
}

.pt13 {
  padding-top: 13px;
}

.pt14 {
  padding-top: 14px;
}

.pt15 {
  padding-top: 15px;
}

.pt16 {
  padding-top: 16px;
}

.pt17 {
  padding-top: 17px;
}

.pt18 {
  padding-top: 18px;
}

.pt19 {
  padding-top: 19px;
}

.pt20 {
  padding-top: 20px;
}

.pt21 {
  padding-top: 21px;
}

.pt22 {
  padding-top: 22px;
}

.pt23 {
  padding-top: 23px;
}

.pt24 {
  padding-top: 24px;
}

.pt25 {
  padding-top: 25px;
}

.pt26 {
  padding-top: 26px;
}

.pt27 {
  padding-top: 27px;
}

.pt29 {
  padding-top: 29px;
}

.pt30 {
  padding-top: 30px;
}

.pt51 {
  padding-top: 51px;
}

.pt89 {
  padding-top: 89px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr22 {
  padding-right: 22px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb8 {
  padding-bottom: 8px;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pl10 {
  padding-left: 10px;
}

.pl13 {
  padding-left: 13px !important;
}

.tr {
  text-align: right;
}

.fs12 {
  font-size: 12px;
}

.br1_e9e9e9:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #e9e9e9;
}

.row {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.w470 {
  width: 470px;
  float: left;
}

.w394 {
  width: 394px;
  float: left;
}

.w280 {
  width: 280px;
  float: left;
}

.w650 {
  width: 650px;
  float: left;
}

.w890 {
  width: 890px;
  float: left;
}

.w522 {
  width: 522px;
  float: left;
}

.w434 {
  width: 434px;
  float: left;
}

.fl {
  position: relative;
  float: left;
}

.fr {
  position: relative;
  float: right;
}

.more {
  font-size: 14px;
}
.more a {
  color: rgba(0, 0, 0, 0.6);
}

.bgf0f0f0 {
  background-color: #f5f5f5;
}

.bgffffff {
  background-color: #fff;
}

.bgf5f5f5 {
  background-color: #f5f5f5;
}

.box {
  width: 100%;
}
.box .box_header {
  height: 42px;
  border-top: 1px solid #adadad;
  border-bottom: 1px solid #adadad;
  position: relative;
}
.box .box_header.noborder {
  border: none;
}
.box .box_header.borderb {
  height: 40px;
}
.box .box_header.borderb:after {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
  background-color: #e5e5e5;
  left: 0;
  right: 0;
  bottom: 1px;
}
.box .box_header .title {
  position: relative;
  display: inline-block;
  font-family: SourceHanSansCN;
  font-weight: bolder;
  font-size: 22px;
  height: 42px;
  line-height: 42px;
}
.box .box_header .title:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #a01727;
}

/* CSS print */
/**
 * Print Stylesheet
*/
@media print {
  @page {
    margin: 1cm;
  }
  body {
    background: #fff;
    color: #000;
  }

  a {
    page-break-inside: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }

  table,
pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }
}
/* Fonts */
/**
 * Fonts
*/
@font-face {
  font-family: "SourceHanSansCN";
  src: url(../font/SourceHanSansCN-VF.ttf.ff070d.woff2) format("woff2"), url(../font/SourceHanSansSC-VF.9366e4.ttf) format("truetype");
  font-style: normal;
}
/* Mixins, helpers and functions */
/**
 * Helper mixins
*/
/* Vendor */
/* Components */
#perny-main {
  min-height: calc(100vh - 378px);
}

#footer .w1200 {
  margin: 0 auto;
  width: 1200px;
}

#footer {
  padding: 64px 0 38px;
  width: 100%;
  background-color: #333;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

#footer .footer-container {
  position: relative;
}

#footer .footer-container .link-1,
#footer .footer-container .link-2,
#footer .footer-container .link-3,
#footer .footer-container .link-4 {
  float: left;
}

#footer .footer-container .link-1 ul li,
#footer .footer-container .link-2 ul li,
#footer .footer-container .link-3 ul li,
#footer .footer-container .link-4 ul li {
  font-size: 14px;
  line-height: 2.2;
  color: #f1f1f1;
}

#footer .footer-container .link-1 ul li a,
#footer .footer-container .link-2 ul li a,
#footer .footer-container .link-3 ul li a,
#footer .footer-container .link-4 ul li a {
  color: #f1f1f1;
}

#footer .footer-container .link-1 {
  width: 11%;
}

#footer .footer-container .link-1 ul {
  padding-left: 19px;
}

#footer .footer-container .link-2 {
  width: 9%;
}

#footer .footer-container .link-2 ul {
  padding-left: 19px;
}

#footer .footer-container .link-3 {
  width: 45%;
}

#footer .footer-container .link-3::before {
  position: absolute;
  left: 32.5%;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  border-left: 1px solid #272727;
}

#footer .footer-container .link-3 ul {
  padding-left: 43px;
}

#footer .footer-container .link-3 ul li {
  font-size: 11px;
  float: left;
}

#footer .footer-container .link-3 ul li.odd {
  width: 59%;
}

#footer .footer-container .link-3 ul li.even {
  width: 41%;
}

#footer .footer-container .link-3 .other {
  padding-top: 18px;
  padding-left: 43px;
}

#footer .footer-container .link-3 .other .cnr-logo {
  width: 70px;
  height: 22px;
  float: left;
  display: block;
}

#footer .footer-container .link-3 .other .gywm {
  float: left;
  margin-left: 8px;
  font-size: 12px;
  line-height: 2;
  color: #f1f1f1;
}

#footer .footer-container .link-3 .other .gywm a {
  color: #f1f1f1;
}

#footer .footer-container .link-3 .other span {
  float: right;
  margin-right: 23px;
}

#footer .footer-container .link-3 .other span a {
  display: block;
  float: left;
  margin-left: 8px;
}

#footer .footer-container .link-3 .other span img {
  height: 26px;
  width: auto;
  display: block;
}

#footer .footer-container .link-4 {
  width: 22%;
}

#footer .footer-container .link-4::before {
  position: absolute;
  left: 77.5%;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  border-left: 1px solid #272727;
}

#footer .footer-container .link-4 ul {
  padding-left: 43px;
  margin-bottom: -14px;
}

#footer .footer-container .link-4 ul li {
  width: 50%;
  float: left;
  margin-bottom: 22px;
  height: 32px;
}
#footer .footer-container .link-4 ul li:nth-child(odd) {
  width: 54%;
}
#footer .footer-container .link-4 ul li:nth-child(even) {
  width: 46%;
}

#footer .footer-container .link-4 ul li a {
  display: block;
}

#footer .footer-container .link-4 ul li a img {
  display: inline-block;
  width: 32px;
  height: 32px;
}

#footer .footer-container .link-4 ul li a span {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  width: 32px;
  height: 32px;
  text-align: center;
  vertical-align: top;
}

#footer .footer-container .link-4 ul li a span.yunting {
  line-height: 32px;
}

/* CSS Document */
body {
  margin: 0;
}

.unleash_slider {
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: 0px 0px 10px #010101;
}

.unleash_slide {
  overflow: hidden;
  display: block;
  box-shadow: -5px 0px 5px rgba(1, 1, 1, 0.3);
  position: absolute;
  float: left;
  display: inline-block;
  zoom: 1;
  background: #000;
}

.unleash_caption {
  position: absolute;
}

.unleash_caption h6 {
  color: #fff;
}

.unleash_caption p {
  color: #fff;
}

.unleash_content {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.unleash_drag {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
}

.unleash_slide_mouseDown {
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
}

.example_1 {
  box-shadow: 5px 0px 5px rgba(1, 1, 1, 0.3);
}

.unleash_slide img,
.unleash_slide video {
  position: relative;
  width: 100%;
  opacity: 0.7;
  transition: opacity 700ms;
}

.unleash_slide img:hover,
.unleash_slide video:hover {
  opacity: 1;
}

.unleash_slide.active img,
.unleash_slide.active video {
  opacity: 1;
}

.upper_text {
  position: absolute;
  width: 100%;
  margin: none;
}

.upper_text h4 {
  text-align: center;
  margin: 0;
}

.upper_text h4 a {
  color: white;
  margin: 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 55px;
  text-decoration: none;
}

.lower_text {
  position: absolute;
  width: 100%;
  margin: none;
  text-align: center;
  padding: 0 5%;
}

.lower_text p {
  color: white;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .upper_text h4 a {
    font-size: 20px;
  }

  .lower_text p {
    display: none;
  }
}
.main_nav {
  background: #111;
  padding: 5px 0;
  box-shadow: 0px 2px 10px rgba(1, 1, 1, 0.81);
}

.color {
  padding: 40px 0;
  /*border-top: 1px solid rgba(255,255,255,0.1);*/
}

.unleash_container {
  position: relative;
}

.unleash_controls {
  width: 120px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
}

.unleash_loader {
  height: 2px;
  background: #00f0ff;
  /*left: -101%;*/
  position: absolute;
  position: relative;
  z-index: 1000;
  box-shadow: 0px 0px 3px 1px #00f0ff;
  -webkit-box-shadow: 0px 0px 3px 1px #00f0ff;
  -moz-box-shadow: 0px 0px 3px 1px #00f0ff;
  top: 10px;
}

.unleash_loader_bg {
  height: 20px;
  overflow: hidden;
  background: #000000;
  z-index: 999;
  width: 100%;
  top: -12px;
  position: absolute;
}

.unleash_pause {
  background: #fff;
  height: 30px;
  width: 40px;
  float: left;
  cursor: pointer;
}

.unleash_buttons {
  overflow: hidden;
  width: 100%;
  margin: 20px auto 0px auto;
  text-align: center;
}

.unleash_buttons i {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.emboss {
  background: rgba(255, 255, 255, 0.25);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}

.main_slider {
  background: #040d1c;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzA0MGQxYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxYzM5NDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #040d1c 0%, #437591 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#040d1c", endColorstr="#1c3949",GradientType=0 );
  /* IE6-8 */
}

@font-face {
  font-family: "fontello";
  src: url(../font/fontello.5f97a0.eot);
  src: url(../font/fontello.5f97a0.eot#iefix) format("embedded-opentype"), url(../font/fontello.1cc2f8.woff) format("woff"), url(../font/fontello.94ffdd.ttf) format("truetype"), url(../images/design/fontello.1de3b9.svg#fontello) format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?63503719#fontello') format('svg');
  }
}
*/
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-left-open:before {
  content: "\e806";
}

/* '' */
.icon-right-open-5:before {
  content: "\e819";
}

/* '' */
.icon-play-1:before {
  content: "\e808";
}

/* '' */
.icon-pause-1:before {
  content: "\e801";
}

/* '' */
.icon-to-end-1:before {
  content: "\e802";
}

/* '' */
.icon-to-start-1:before {
  content: "\e805";
}

/* '' */
.icon-left-open-1:before {
  content: "\e80a";
}

/* '' */
.icon-right-open-1:before {
  content: "\e80b";
}

/* '' */
.icon-left-open-mini:before {
  content: "\e80c";
}

/* '' */
.icon-right-open-mini:before {
  content: "\e80d";
}

/* '' */
.icon-left-open-big:before {
  content: "\e80e";
}

/* '' */
.icon-right-open-big:before {
  content: "\e80f";
}

/* '' */
.icon-play:before {
  content: "\e800";
}

/* '' */
.icon-right-open:before {
  content: "\e809";
}

/* '' */
.icon-to-end:before {
  content: "\e803";
}

/* '' */
.icon-to-start:before {
  content: "\e804";
}

/* '' */
.icon-left-open-outline:before {
  content: "\e810";
}

/* '' */
.icon-left-open-2:before {
  content: "\e811";
}

/* '' */
.icon-right-open-outline:before {
  content: "\e812";
}

/* '' */
.icon-right-open-2:before {
  content: "\e813";
}

/* '' */
.icon-left-open-3:before {
  content: "\e814";
}

/* '' */
.icon-right-open-3:before {
  content: "\e815";
}

/* '' */
.icon-left-open-4:before {
  content: "\e816";
}

/* '' */
.icon-right-open-4:before {
  content: "\e817";
}

/* '' */
.icon-left-open-5:before {
  content: "\e818";
}

/* '' */
.icon-pause:before {
  content: "\e807";
}

/* '' */
.rotateIn90 {
  -webkit-animation-name: rotateIn90;
  animation-name: rotateIn90;
}

.rotateOut90 {
  -webkit-animation-name: rotateOut90;
  animation-name: rotateOut90;
}

@-webkit-keyframes rotateIn90 {
  0% {
    transform: rotateZ(90deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes rotateIn90 {
  0% {
    transform: rotateZ(90deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
@-webkit-keyframes rotateOut90 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(90deg);
  }
}
@keyframes rotateOut90 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(90deg);
  }
}
/* Browser specific styles */
/**
 * Dirty hacks, yes internet explorer, we are looking at you
*/
/* Demo Page styles */
.wrapper i.sound {
  background: url(../images/design/icon_sound_s.33e655.png) no-repeat 0 0;
  cursor: pointer;
  display: inline-block;
  height: 13px;
  margin-left: 0.3em;
  width: 10px;
  vertical-align: middle;
}

.wrapper i.sound.current {
  background: url(../images/design/icon_sound_s.f8f986.gif) no-repeat 0 0;
}

.wrapper .goback {
  position: fixed;
  display: none;
  z-index: 9999;
  right: 10px;
  bottom: 100px;
  background: url(../images/design/goback.59d6ba.png) no-repeat 0 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.voice-wrapper:before {
  content: "";
  display: block;
  position: reslute;
  background: #333;
  width: 100%;
  height: 56px;
}

.wrapper .banner {
  width: 100%;
  height: 200px;
}

.wrapper .menu-main {
  box-shadow: 0 7px 14px #F4F4F4;
  margin-bottom: 0px;
}

.wrapper .menu-main .line1 {
  position: relative;
  height: 90px;
}

.wrapper .menu-main .line1 .w1200 {
  position: relative;
}

.wrapper .menu-main .line1 .form {
  position: absolute;
  left: 143px;
  top: 22px;
}

.wrapper .menu-main .line1 .form .input_wrapper {
  position: relative;
  background: url(../images/design/search-main.da06e9.png) no-repeat left top;
  width: 126px;
  height: 20px;
  padding: 7px 14px;
  font-size: 0;
}

.wrapper .menu-main .line1 .form .input_wrapper input[type=text] {
  border: none;
  font-size: 14px;
  font-style: normal;
  width: 106px;
  height: 20px;
  line-height: 20px;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
}

.wrapper .menu-main .line1 .form .input_wrapper button[type=submit] {
  position: absolute;
  right: 10px;
  top: 7px;
  background: transparent url(../images/design/icon_search.2379f1.png) no-repeat center;
  height: 20px;
  width: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}

.wrapper .menu-main .line1 .patch20221114-radio-live {
  position: absolute;
  left: 299px;
  top: 0px;
}
.wrapper .menu-main .line1 .patch20221114-radio-live .radio-live-mask {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
}
.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container {
  width: 280px;
  height: 90px;
}
.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container .swiper-slide .item {
  position: relative;
  padding: 20px 20px 20px 84px;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  background: url(../images/design/top-radio-bg.ef09be.png) no-repeat 40px center;
}
.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container .swiper-slide .item img {
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border-radius: 8px;
  margin-right: 10px;
  filter: drop-shadow(2px 2px 5px rgba(154, 18, 37, 0.3));
}

.wrapper .menu-main .line1 .logo {
  position: absolute;
  width: 109px;
  height: 34px;
  left: 14px;
  top: 23px;
}

.wrapper .menu-main .line1 .logo img {
  display: block;
  width: 106px;
  height: 33px;
}

.wrapper .menu-main .line1 .mzgbw0304 {
  position: absolute;
  left: 690px;
  top: 30px;
  background: url(../images/design/mzgbw0304.876a20.png) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .menu-main .line1 .mzgbw0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.bor0304 {
  border-right: 1px solid #ececec;
  position: absolute;
  left: 773px;
  height: 17px;
  top: 33px;
}

.bor0305 {
  border-right: 1px solid #ececec;
  position: absolute;
  left: 890px;
  height: 17px;
  top: 33px;
}

.wrapper .menu-main .line1 .gjyjgbw0304 {
  position: absolute;
  left: 781px;
  top: 30px;
  background: url(../images/design/gjyjgbw0304.75aad0.png) no-repeat left top;
  background-size: 100% 100%;
  width: 102px;
  height: 22px;
}

.wrapper .menu-main .line1 .gjyjgbw0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .nhtww0304 {
  position: absolute;
  left: 897px;
  top: 30px;
  background: url(../images/design/nhtww0304.42ba90.png) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .menu-main .line1 .nhtww0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .download_app {
  position: absolute;
  left: 1004px;
  top: 26px;
  background: url(../images/design/btn_downloadAPP.2fafff.png) no-repeat left top;
  width: 94px;
  height: 30px;
}

.wrapper .menu-main .line1 .download_app a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .email {
  position: absolute;
  left: 1112px;
  top: 26px;
  background: url(../images/design/btn_Email0623.4136f9.png) no-repeat left top;
  width: 80px;
  height: 30px;
  background-size: 100% 100%;
}

.wrapper .menu-main .line1 .email a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line2 {
  height: 40px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.wrapper .menu-main .line2 .temp {
  float: left;
  padding-top: 1px;
}

.wrapper .menu-main .line2 .temp img {
  display: block;
}

.wrapper .menu-main .line2 .nav-main {
  height: 40px;
}

.wrapper .menu-main .line2 .nav-main li {
  position: relative;
  float: left;
  height: 40px;
  line-height: 40px;
  margin-left: 47px;
}

.wrapper .menu-main .line2 .nav-main li:first-child {
  margin-left: 13px;
}

.wrapper .menu-main .line2 .nav-main li:hover .sub {
  visibility: visible;
  opacity: 1;
}

.wrapper .menu-main .line2 .nav-main li a {
  font-size: 16px;
  font-weight: 700;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

.wrapper .menu-main .line2 .nav-main li a:hover {
  color: #AA182C;
  text-decoration: none;
}

.wrapper .menu-main .line2 .nav-main li .sub {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  position: absolute;
  z-index: 9;
  top: 37px;
  left: -2px;
  padding: 10px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  max-width: 124px;
}

.wrapper .menu-main .line2 .nav-main li .sub:before {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  background: url(../images/design/menu-sub-up.bb61fb.png) no-repeat center;
  width: 14px;
  height: 8px;
}

.wrapper .menu-main .line2 .nav-main li .sub a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  font-weight: normal;
  margin: 0 3px;
  white-space: nowrap;
}

.wrapper .menu-main .line3 {
  height: 39px;
  border-bottom: 1px solid #dfdfdf;
}

.wrapper .menu-main .line3 .nav-local li {
  float: left;
  height: 24px;
  line-height: 24px;
  padding-top: 6px;
  margin-left: 23px;
}

.wrapper .menu-main .line3 .nav-local li:first-child {
  margin-left: 16px;
}

.wrapper .menu-main .line3 .nav-local li a {
  font-size: 12px;
  line-height: 24px;
  height: 24px;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

.wrapper .floatNav-wrapper {
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 52px;
  visibility: hidden;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

.wrapper .floatNav-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../images/design/floatNav_shadow.a197d1.png) repeat-x 0 0;
  width: 100%;
  height: 45px;
}

.wrapper .floatNav-wrapper .floatNav {
  position: absolute;
  width: 100%;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  background: #ffffff;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main {
  margin: 0 auto;
  width: 1200px;
  height: 50px;
  background: url(../images/design/logo-main-s.27f712.png) no-repeat 0 center;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default {
  position: absolute;
  z-index: 9;
  padding-left: 100px;
  height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 1100px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .openFloatNav-hidden {
  float: left;
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  background: url(../images/design/icon_menu.8210e3.png) no-repeat 0 center;
  padding-left: 24px;
  padding-right: 17px;
  border-right: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search {
  float: left;
  height: 38px;
  padding: 0 15px;
  border-right: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search a {
  display: block;
  background: url(../images/design/icon_search.2379f1.png) no-repeat 0 0;
  width: 18px;
  height: 18px;
  margin-top: 10px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live {
  position: relative;
  float: left;
  margin-left: 20px;
}
.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .swiper-container {
  height: 38px;
  width: 240px;
}
.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .swiper-container .swiper-slide .item {
  align-items: center;
  font-weight: bolder;
  height: 100%;
  line-height: 38px;
  vertical-align: middle;
}
.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .radio-live-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right {
  float: right;
  border-left: 1px solid #e5e5e5;
  height: 38px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .download_app {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-top: 4px;
  background: url(../images/design/btn_downloadAPP.2fafff.png) no-repeat left top;
  width: 94px;
  height: 30px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .download_app a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .email {
  float: left;
  margin-left: 12px;
  background: url(../images/design/btn_Email2.e1e19d.png) no-repeat 0 0;
  width: 51px;
  height: 30px;
  margin-top: 4px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .email a {
  display: block;
  width: 100%;
  height: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .patch20221114-radio-live {
  float: left;
  display: block;
  cursor: pointer;
  margin-left: 7px;
  margin-top: 4px;
  background: url(../images/design/RadioLive2.a6bc91.png) no-repeat 0 0;
  width: 84px;
  height: 30px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 {
  float: right;
  height: 38px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .mzgbw0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url(../images/design/mzgbw0304.876a20.png) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .mzgbw0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .gjyjgbw0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url(../images/design/gjyjgbw0304.75aad0.png) no-repeat left top;
  background-size: 100% 100%;
  width: 102px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .gjyjgbw0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .nhtww0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url(../images/design/nhtww0304.42ba90.png) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .nhtww0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden {
  display: none;
  padding-left: 100px;
  width: 1100px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 {
  height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul {
  float: left;
  padding-left: 15px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li {
  position: relative;
  float: left;
  height: 38px;
  line-height: 38px;
  margin-left: 33px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li:hover .sub {
  visibility: visible;
  opacity: 1;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li:first-child {
  margin-left: 0;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li a {
  font-size: 16px;
  font-weight: bold;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  position: absolute;
  z-index: 99;
  top: 37px;
  left: -2px;
  padding: 10px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  max-width: 124px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub:before {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  background: url(../images/design/menu-sub-up.bb61fb.png) no-repeat center;
  width: 14px;
  height: 8px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  font-weight: normal;
  margin: 0 3px;
  white-space: nowrap;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 .closeFloatNav-hidden {
  float: right;
  cursor: pointer;
  background: url(../images/design/closeFloatNav_hidden.d1e2f1.png) no-repeat right center;
  width: 81px;
  height: 38px;
  border-left: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  border-top: 1px solid #dfdfdf;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../images/design/floatNav_shadow.a197d1.png) repeat-x 0 0;
  width: 100%;
  height: 45px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local {
  position: absolute;
  background: #efefef;
  z-index: 9;
  height: 50px;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul {
  padding-left: 124px;
  width: 1076px;
  margin: 0 auto;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li {
  float: left;
  height: 50px;
  line-height: 50px;
  margin-left: 15px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li:first-child {
  margin-left: 0;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li a {
  font-size: 14px;
  color: #616161;
}

.wrapper .top-half {
  background: url(../images/design/eyeslook_top_bg.70c3d2.png) no-repeat center bottom;
  width: 100%;
  padding-bottom: 19px;
}

.wrapper .bottom-half {
  background: url(../images/design/eyeslook_bottom_bg.321e94.png) no-repeat center top;
  width: 100%;
}

.wrapper .row1 {
  margin-bottom: 16px;
}

.wrapper .row1 .header {
  padding-top: 23px;
}

.wrapper .row1 .header .swiper-container {
  width: 100%;
  height: 48px;
  text-align: center;
}

.wrapper .row1 .header h1 {
  width: 100%;
  height: 48px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row1 .header h1 a {
  font-size: 36px;
  font-weight: bold;
  color: #AA182C;
}

.wrapper .row1 .header h1 a:hover {
  text-decoration: none;
}

.wrapper .row1 .header i.sound {
  background: url(../images/design/icon_sound_s_red.309f2f.png) no-repeat left top;
}

.wrapper .row1 .header h1 i.sound {
  background: url(../images/design/icon_sound_m.2b1374.png) no-repeat left top;
  width: 15px;
  height: 19px;
  margin-left: 0;
}

.wrapper .row1 .header h1 i.sound.current {
  background: url(../images/design/icon_sound_m.513c29.gif) no-repeat 0 0;
}

.wrapper .row1 .header .subhead {
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row1 .header .subhead strong {
  font-weight: normal;
  font-size: 18px;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

.site_focus {
  width: 100%;
  height: 264px;
}
.site_focus .carousel:hover .swiper-button-prev, .site_focus .carousel:hover .swiper-button-next {
  opacity: 1;
}
.site_focus .carousel .swiper-button-prev {
  opacity: 0;
  width: 30px;
  height: 46px;
  margin-top: -23px;
  background: url(../images/design/fouces_prev.8218b5.png) no-repeat 0 0;
  transition: opacity 0.6s ease-in-out;
}
.site_focus .carousel .swiper-button-next {
  opacity: 0;
  width: 30px;
  height: 46px;
  margin-top: -23px;
  background: url(../images/design/fouces_next.211436.png) no-repeat 0 0;
  transition: opacity 0.6s ease-in-out;
}
.site_focus .swiper-slide {
  position: relative;
}
.site_focus .swiper-slide a {
  display: block;
}
.site_focus .swiper-slide a:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  bottom: 0;
  content: "";
  height: 70px;
  left: 0;
  position: absolute;
  width: 100%;
}
.site_focus .swiper-slide a img {
  display: block;
}
.site_focus .swiper-slide a span {
  bottom: 0;
  color: #fff;
  left: 0;
  line-height: 46px;
  overflow: hidden;
  position: absolute;
  text-indent: 2em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  z-index: 9;
}

.erwen {
  position: relative;
  margin-left: -14px;
  margin-top: -4px;
  background: url(../images/design/erwen_beijing.8944a9.png) no-repeat 0 0;
  width: 917px;
  height: 235px;
}
.erwen .erwen-title {
  position: absolute;
  left: 46px;
  top: 10px;
  width: 148px;
  height: 64px;
}
.erwen .erwen-title a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
}
.erwen .change {
  position: absolute;
  background: url(../images/design/icon_change.27ecbc.png) no-repeat 0 0;
  width: 58px;
  height: 58px;
  top: 5px;
  right: 17px;
  cursor: pointer;
}
.erwen .erwen-list {
  position: absolute;
  left: 16px;
  top: 66px;
  width: 886px;
  height: 137px;
}
.erwen .erwen-list ul {
  width: 100%;
}
.erwen .erwen-list ul li {
  position: relative;
  float: left;
  width: 413px;
  height: 28px;
  margin: 0 15px;
  white-space: nowrap;
  overflow: hidden;
}
.erwen .erwen-list ul li a {
  display: block;
  position: relative;
  height: 28px;
  padding-left: 24px;
  line-height: 28px;
  font-size: 14px;
  color: #000000;
  border-radius: 10px;
}
.erwen .erwen-list ul li a:hover {
  background-color: #eef6fc;
  color: #000000;
}
.erwen .erwen-list ul li a .sound {
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/design/icon_sound_erwen.9f1617.png) no-repeat left top;
  width: 17px;
  height: 17px;
  margin-top: -8.5px;
  cursor: pointer;
}
.erwen .erwen-list ul li a .sound.current {
  background: url(../images/design/icon_sound_erwen_pause.bfeda6.png) no-repeat left top;
}

.wrapper .eyes_look {
  position: relative;
  background: url(../images/design/eyeslook_bg.a52132.png) repeat-x 0 0;
  height: 760px;
  padding: 24px 14px 22px;
}
.wrapper .eyes_look .title {
  height: 32px;
  background: url(../images/design/eyes_look-slogan.af69a9.png) no-repeat 61px 6px;
}
.wrapper .eyes_look .title .left {
  float: left;
}
.wrapper .eyes_look .title .left a {
  display: inline-block;
  background: url(../images/design/eyes_look_title.f3a0b4.png) no-repeat left bottom;
  width: 45px;
  height: 32px;
}
.wrapper .eyes_look .title .right {
  float: right;
  position: relative;
}
.wrapper .eyes_look .title .right .btn_towcode {
  position: absolute;
  right: 75px;
  top: 0px;
  background: url(../images/design/btn_share.94d167.png) no-repeat 0 0;
  width: 36px;
  height: 36px;
}
.wrapper .eyes_look .title .right .btn_app_plus {
  position: absolute;
  right: 2px;
  top: 2px;
  background: url(../images/design/eyes_look_appPlus.4c6110.png) no-repeat 0 0;
  width: 59px;
  height: 31px;
}
.wrapper .eyes_look .slider {
  position: relative;
  padding: 0 40px 0;
  height: 460px;
  background: url(../images/design/eyes_look_tip.9e7e07.png) no-repeat 855px 426px;
}
.wrapper .eyes_look .slider .arrow_left {
  position: absolute;
  z-index: 9;
  left: 13px;
  top: 207px;
  background: url(../images/design/eyes_look_arrowLeft.80a02e.png) no-repeat 0 0;
  width: 17px;
  height: 31px;
}
.wrapper .eyes_look .slider .arrow_right {
  position: absolute;
  z-index: 9;
  right: 7px;
  top: 207px;
  background: url(../images/design/eyes_look_arrowRight.0faea0.png) no-repeat 0 0;
  width: 18px;
  height: 31px;
}
.wrapper .eyes_look .slider .swiper-container {
  height: 422px;
}
.wrapper .eyes_look .slider .pagination {
  position: absolute;
  text-align: center;
  width: 1092px;
}
.wrapper .eyes_look .slider .pagination .swiper-pagination-switch {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background: #717171;
  margin: 0 7px;
}
.wrapper .eyes_look .slider .pagination .swiper-active-switch {
  background: #ffffff;
}
.wrapper .eyes_look .slider .col {
  float: left;
  padding: 12px 26px 0;
}
.wrapper .eyes_look .slider .col .item {
  position: relative;
  width: 221px;
  height: 389px;
}
.wrapper .eyes_look .slider .col .item:hover:before {
  transform: translate(16px, -12px);
  opacity: 1;
}
.wrapper .eyes_look .slider .col .item:hover:after {
  opacity: 1;
}
.wrapper .eyes_look .slider .col .item:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  opacity: 0;
  background: url(../images/design/eyes_look_hover_bg.4da431.png) no-repeat center;
  width: 215px;
  height: 384px;
  transition: all ease-in-out 0.2s;
}
.wrapper .eyes_look .slider .col .item:after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  background: url(../images/design/eyes_look_hover_img.81343d.png) no-repeat center;
  width: 221px;
  height: 389px;
  opacity: 0;
  transition: all ease-in-out 0.2s;
}
.wrapper .eyes_look .slider .col .item a {
  position: absolute;
  z-index: 9;
  display: block;
  padding: 2px;
}
.wrapper .eyes_look .slider .col .item a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/design/icon_play_l.5523fd.png) no-repeat center;
  width: 60px;
  margin-left: -30px;
  height: 60px;
  margin-top: -36px;
}
.wrapper .eyes_look .slider .col .item a:after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  background: url(../images/design/eyes_look_mask.190b0d.png) no-repeat center;
  width: 217px;
  height: 160px;
}
.wrapper .eyes_look .slider .col .item a img {
  display: block;
  width: 217px;
  height: 385px;
  border-radius: 5px;
}
.wrapper .eyes_look .slider .col .item a span {
  position: absolute;
  z-index: 2;
  width: 191px;
  height: 78px;
  padding: 0 15px;
  top: 306px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 26px;
}
.wrapper .eyes_look .timeline {
  width: 100%;
  height: 267px;
  background: url(../images/design/icon_live.3fc72e.png) no-repeat 107px 11px;
}
.wrapper .eyes_look .timeline ul {
  padding-top: 32px;
  padding-left: 66px;
}
.wrapper .eyes_look .timeline ul li {
  position: relative;
  float: left;
  width: 214px;
  padding-top: 18px;
  background: url(../images/design/icon_desc.cb97b5.png) no-repeat center 0;
  text-align: center;
}
.wrapper .eyes_look .timeline ul li:first-child:before {
  display: none;
}
.wrapper .eyes_look .timeline ul li:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #575757;
  width: 106px;
  top: 8px;
  left: 0;
}
.wrapper .eyes_look .timeline ul li:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #575757;
  width: 106px;
  top: 8px;
  right: 0;
}
.wrapper .eyes_look .timeline ul li > div.live img {
  background: url(../images/design/icon_live-ing.483285.png) no-repeat 0 0;
  padding: 2px;
}
.wrapper .eyes_look .timeline ul li > div.live .pic {
  width: 184px;
  margin-top: -2px;
}
.wrapper .eyes_look .timeline ul li > div.live .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 2px;
  top: -4px;
  background: url(../images/design/icon_live-ing-up.73d83a.png) no-repeat 0 0;
  width: 104px;
  height: 26px;
}
.wrapper .eyes_look .timeline ul li > div.live .pic:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: -4px;
  background: url(../images/design/icon_live-ing-down.d83860.png) no-repeat 0 0;
  width: 51px;
  height: 26px;
}
.wrapper .eyes_look .timeline ul li > div.live .pic .poster:before {
  bottom: 2px;
}
.wrapper .eyes_look .timeline ul li > div.live .titl {
  margin-top: 12px;
}
.wrapper .eyes_look .timeline ul li > div.replay .pic {
  width: 180px;
}
.wrapper .eyes_look .timeline ul li > div.replay .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 60px;
  height: 20px;
  background: url(../images/design/icon_live-replay.275516.png) no-repeat 0 0;
}
.wrapper .eyes_look .timeline ul li > div.prevue .pic {
  width: 180px;
}
.wrapper .eyes_look .timeline ul li > div.prevue .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 60px;
  height: 20px;
  background: url(../images/design/icon_live-prevue.ca455a.png) no-repeat 0 0;
}
.wrapper .eyes_look .timeline ul li > div .time {
  color: #b9b9b9;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  margin-bottom: 20px;
}
.wrapper .eyes_look .timeline ul li > div .pic {
  position: relative;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.wrapper .eyes_look .timeline ul li > div .pic .poster {
  position: relative;
  font-size: 0;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.wrapper .eyes_look .timeline ul li > div .pic .poster img {
  width: 180px;
  height: 102px;
}
.wrapper .eyes_look .timeline ul li > div .pic .poster:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url(../images/design/eyes_look_timeline_mask.410887.png) no-repeat 0 0;
  width: 180px;
  margin-left: -90px;
  height: 83px;
}
.wrapper .eyes_look .timeline ul li > div .pic .poster:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/design/icon_play_m.74c9ee.png) no-repeat 0 0;
  width: 40px;
  margin-left: -20px;
  height: 40px;
  margin-top: -20px;
}
.wrapper .eyes_look .timeline ul li > div .titl {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  width: 180px;
  margin: 10px auto 0;
}

.wrapper .xingzhen > .row:before {
  content: "";
  position: absolute;
  left: -62px;
  top: -45px;
  background: url(../images/design/startMatrix-slogan.f30282.png) no-repeat 0 0;
  width: 298px;
  height: 121px;
}
.wrapper .xingzhen .title {
  height: 34px;
  margin-bottom: 17px;
  position: relative;
  width: 100%;
  z-index: 99;
}
.wrapper .xingzhen .title .left a {
  display: block;
  background: url(../images/design/startMatrix.d7fb94.png) no-repeat 0 0;
  width: 57px;
  height: 34px;
}
.wrapper .xingzhen .title .right {
  position: relative;
}
.wrapper .xingzhen .title .right .btn_towcode {
  background: url(../images/design/startMatrix_share.fb9c78.png) no-repeat 0 0;
  height: 36px;
  position: absolute;
  right: 80px;
  top: 0;
  width: 36px;
}
.wrapper .xingzhen .title .right .btn_app_plus {
  background: url(../images/design/startMatrix_appPlus.bb788a.png) no-repeat 0 0;
  height: 31px;
  position: absolute;
  right: 3px;
  top: 0;
  width: 59px;
}
.wrapper .xingzhen .arrow_left {
  position: absolute;
  z-index: 99;
  left: -21px;
  top: 50%;
  background: url(../images/design/startMatrix_arrowleft.9f87f6.png) no-repeat right 0;
  width: 21px;
  height: 44px;
  margin-top: -22px;
  cursor: pointer;
  transition: transform 0s ease-in-out 200ms;
}
.wrapper .xingzhen .arrow_left.swiper-button-disabled {
  opacity: 0.6;
}
.wrapper .xingzhen .arrow_left.large {
  background: url(../images/design/startMatrix_arrowleft.9f87f6.png) no-repeat right 0;
  width: 21px;
  transform: translate(21px, 0);
}
.wrapper .xingzhen .arrow_right {
  position: absolute;
  z-index: 99;
  right: -21px;
  top: 50%;
  background: url(../images/design/startMatrix_arrowright.e21f73.png) no-repeat left 0;
  width: 21px;
  height: 44px;
  margin-top: -22px;
  cursor: pointer;
  transition: transform 0s ease-in-out 200ms;
}
.wrapper .xingzhen .arrow_right.swiper-button-disabled {
  opacity: 0.6;
}
.wrapper .xingzhen .arrow_right.large {
  background: url(../images/design/startMatrix_arrowright.e21f73.png) no-repeat left 0;
  width: 21px;
  transform: translate(-21px, 0);
}
.wrapper .xingzhen .swiper-container {
  position: relative;
  width: 1200px;
  height: 310px;
  background-color: #000000;
}
.wrapper .xingzhen .swiper-container .swiper-slide {
  font-size: 0;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_loader_bg {
  top: -20px;
  background-color: transparent;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider {
  box-shadow: none;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide {
  box-shadow: none;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content {
  display: block;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .photo img {
  display: block;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#00000000",GradientType=0 );
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 44px;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#80000000",GradientType=0 );
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 44px;
  text-indent: 1em;
  white-space: nowrap;
  overflow: hidden;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .slogen {
  position: absolute;
  left: 105px;
  top: 27px;
  color: #ffffff;
  font-size: 12px;
  opacity: 0;
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname {
  position: absolute;
  left: 43px;
  top: 28px;
  height: 22px;
  font-weight: bold;
  transform-origin: 0 0;
  transform: rotateZ(90deg);
}
.wrapper .xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
}

.wrapper .row4 ul li {
  height: 28px;
}

.wrapper .zhuanti > .row:before {
  background: url(../images/design/zhuanti_shadow.bd4e8e.png) no-repeat 0 0;
  content: "";
  height: 74px;
  left: -26px;
  position: absolute;
  top: -28px;
  width: 104px;
}
.wrapper .zhuanti .title {
  height: 34px;
  position: relative;
  width: 100%;
  z-index: 99;
}
.wrapper .zhuanti .title .left a {
  background: url(../images/design/zhuanti.0a72d3.png) no-repeat 0 0;
  display: block;
  height: 30px;
  width: 45px;
}
.wrapper .zhuanti .title .right {
  position: relative;
}
.wrapper .zhuanti .title .right .btn_towcode {
  background: url(../images/design/startMatrix_share.fb9c78.png) no-repeat 0 0;
  height: 36px;
  position: absolute;
  right: 80px;
  top: 0;
  width: 36px;
}
.wrapper .zhuanti .title .right .btn_app_plus {
  background: url(../images/design/startMatrix_appPlus.bb788a.png) no-repeat 0 0;
  height: 31px;
  position: absolute;
  right: 3px;
  top: 0;
  width: 59px;
}
.wrapper .zhuanti .special {
  padding-top: 8px;
}
.wrapper .zhuanti .special li {
  float: left;
  margin-left: 30px;
}
.wrapper .zhuanti .special li img {
  display: block;
}
.wrapper .zhuanti .special li:first-child {
  margin-left: 0;
}

.box_body .pic {
  height: 158px;
  position: relative;
  width: 280px;
}

.box_body .pic a {
  display: block;
  overflow: hidden;
}

.box_body .pic a:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  bottom: 0;
  content: "";
  height: 65px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.box_body .video a:after {
  background: url(../images/design/icon_play_m.74c9ee.png) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
  height: 36px;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  position: absolute;
  top: 50%;
  width: 36px;
}

.box_body .pic a img {
  display: block;
  height: 158px;
  transition: all 0.2s ease-in-out;
  width: 280px;
}

.box_body .pic a span {
  bottom: 5px;
  color: #ffffff;
  font-size: 14px;
  left: 0px;
  line-height: 1.6;
  position: absolute;
  z-index: 2;
  padding: 0px 11px;
}

.box_body .specials a {
  display: block;
  overflow: hidden;
}

.box_body .specials a.item {
  position: relative;
}
.box_body .specials a.item:hover span {
  transform: translateY(-100%);
}
.box_body .specials a.item span {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  padding: 0 10%;
  position: absolute;
  top: 117px;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 80%;
  z-index: 2;
}

.box_body .specials a img {
  display: block;
  height: 117px;
  transition: all 0.2s ease-in-out;
  width: 208px;
}

.list li {
  height: 28px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.list li span {
  font-size: 14px;
  height: 100%;
  line-height: 28px;
}

.list li h3 {
  font-size: 18px;
  height: 100%;
  line-height: 28px;
  padding-left: 13px;
}

.list li h3 a {
  font-weight: 500;
}

ol.list li {
  height: 28px;
  position: relative;
  padding-left: 17px;
}

ol.list li span {
  font-size: 14px;
  height: 100%;
  line-height: 28px;
  background: none;
  padding-left: 0;
}

ol.list li.icon_first {
  background: url(../images/design/icon_first.1694ab.png) no-repeat left center;
  background-size: 13px 17px;
}

ol.list li.icon_second {
  background: url(../images/design/icon_second.aac4b5.png) no-repeat left center;
  background-size: 13px 17px;
}

ol.list li.icon_third {
  background: url(../images/design/icon_third.3deba6.png) no-repeat left center;
  background-size: 13px 17px;
}

ol.list li.icon_forth {
  background: url(../images/design/icon_forth.241f96.png) no-repeat left center;
  background-size: 13px 17px;
}

ol.list li.icon_fifth {
  background: url(../images/design/icon_fifth.437395.png) no-repeat left center;
  background-size: 13px 16px;
}

.box_body .hour_timeline {
  padding-top: 5px;
  background: url(../images/design/timeline_gray.e98649.png) repeat-y 18px 0;
  overflow: hidden;
}

.box_body .hour_timeline li {
  background: url(../images/design/timeline_disc.33d480.png) no-repeat 13px 2px;
  padding-left: 29px;
  height: 75px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.box_body .hour_timeline li:last-child {
  margin-bottom: 0;
}

.box_body .hour_timeline span {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  margin-left: 2px;
  margin-bottom: 3px;
}

.box_body .hour_timeline a {
  font-size: 14px;
}

.box_body .hour_timeline li.f_a62635 a {
  color: #a62635;
}

.yujing_wrapper {
  width: 280px;
  height: 258px;
  background: url(../images/design/yujing_wrapper.53e31b.png) no-repeat;
  overflow: hidden;
}

.yujing_wrapper .yujing_title {
  width: 258px;
  height: 21px;
  background: url(../images/design/yujing_title.af30bc.png) no-repeat;
  margin-top: 24px;
  margin-left: 6px;
}

.yujing_wrapper ul {
  width: 274px;
  margin: 15px auto 0;
  background-color: #fdfdff;
}

.yujing_wrapper ul li {
  height: 39px;
  background-color: #f3f6fc;
  padding: 10px 15px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.yujing_wrapper ul li a {
  font-size: 14px;
}

.introduce_tip {
  width: 280px;
  height: 68px;
  background-color: #f0f0f0;
  overflow: hidden;
  margin-top: 11px;
}

.introduce_tip div {
  width: 260px;
  height: 44px;
  background: url(../images/design/introduce_tip.6ecd1d.png) no-repeat;
  margin: 11px auto 0;
}

.code_wrapper {
  width: 258px;
  height: 108px;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 0 11px;
}

.code_wrapper .cnr_logo {
  width: 70px;
  height: 70px;
  margin-top: 16px;
}

.code_wrapper .qrcode {
  width: 80px;
  height: 80px;
  margin-top: 12px;
}

.code_wrapper .code_mid {
  width: 84px;
  margin: 25px 10px 0;
  line-height: 1.2;
}

.code_wrapper .code_mid p {
  font-size: 14px;
  margin-bottom: 5px;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  font-weight: bolder;
}

.code_wrapper .code_mid span {
  font-size: 14px;
  opacity: 0.6;
}

.code_wrapper.bc1 .cnr_logo {
  background: url(../images/design/cnrlogo1.9679c5.png) no-repeat;
}

.code_wrapper.bc1 .qrcode {
  background: url(../images/design/qrcode1.116541.png) no-repeat;
}

.code_wrapper.bc2 .cnr_logo {
  background: url(../images/design/cnrlogo2.35dfd2.png) no-repeat;
}

.code_wrapper.bc2 .qrcode {
  background: url(../images/design/qrcode2.f4aa6e.png) no-repeat;
}

.code_wrapper.bc3 .cnr_logo {
  background: url(../images/design/cnrlogo3.698ca5.png) no-repeat;
}

.code_wrapper.bc3 .qrcode {
  background: url(../images/design/qrcode3.411631.png) no-repeat;
}

.wrapper .sponsor {
  background-color: #ededed;
  position: relative;
}

.wrapper .sponsor .row::before {
  color: #939393;
  content: "*品牌排名不分先后";
  font-size: 12px;
  position: absolute;
  right: 0px;
  top: 10px;
}

.wrapper .sponsor .row .title {
  background: url(../images/design/guochaominxin.3c91ea.png) no-repeat 50%;
  height: 87px;
  left: -10px;
  position: absolute;
  top: -57px;
  width: 217px;
}

.wrapper .sponsor .row .btn_towcode {
  background: url(../images/design/btn_share_gray.0ef6b4.png) no-repeat 50%;
  height: 36px;
  position: absolute;
  right: 80px;
  top: -42px;
  width: 36px;
}

.wrapper .sponsor .row .btn_app_plus {
  background: url(../images/design/appPlus_gray.337b61.png) no-repeat 50%;
  height: 31px;
  position: absolute;
  right: 2px;
  top: -41px;
  width: 59px;
}

.wrapper .sponsor .row ul {
  padding-bottom: 26px;
  padding-top: 42px;
}

.wrapper .sponsor .row ul li {
  background-color: #fff;
  float: left;
  margin-bottom: 12px;
  margin-right: 12px;
}

.wrapper .sponsor .row ul li span {
  border: 10px solid #fff;
  display: block;
  position: relative;
}

.wrapper .sponsor .row ul li span::before {
  bottom: 0px;
  color: white;
  content: "广告";
  font-size: 12px;
  left: 0px;
  position: absolute;
  background: #999999;
  padding: 0px 2px;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

.wrapper .sponsor .row ul li span img {
  display: block;
  height: 90px;
  width: 170px;
}

.wrapper .sponsor .row ul li:nth-child(6n) {
  margin-right: 0;
}

.wrapper .sponsor:before {
  background-color: #d8d8d8;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.xinwen_zhaiyao {
  width: 280px;
  height: 90px;
  margin-top: -4px;
}
.xinwen_zhaiyao img {
  display: block;
}

.w394 .list:first-child {
  margin-top: -3px;
}

.w394 .list:last-child {
  background: url("../images/design/Parting%20line.6c942a.png") no-repeat 12px 7px;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  background: #000000;
  border-radius: 3px;
  vertical-align: middle;
}

.cloudChina {
  width: 280px;
  height: 197px;
  background-color: #000;
}

.cehua .item {
  height: 240px;
  position: relative;
  width: 135px;
}

.cehua .item a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 240px;
}

.cehua .item span {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  padding: 0 10%;
  position: absolute;
  top: 240px;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 80%;
  z-index: 2;
}

.cehua .item a:hover span {
  transform: translateY(-100%);
}

.wrapper .zmn {
  float: right;
  position: relative;
  width: 521px;
  height: 99px;
  background: url(../images/design/zmn.891e81.png) no-repeat 0 0;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}
.wrapper .zmn .swiper-container {
  position: absolute;
  left: 150px;
  top: 42px;
  width: 250px;
  height: 48px;
}
.wrapper .zmn .swiper-container strong {
  display: block;
  height: 48px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.wrapper .zmn .zmnwyts {
  position: absolute;
  right: 24px;
  top: 37px;
  background: url(../images/design/zmn_btn.4b9b8b.png) no-repeat;
  width: 68px;
  height: 55px;
}
.wrapper .zmn .zmnwyts a {
  display: block;
  width: 100%;
  height: 100%;
}

.hottop {
  background: url(../images/design/icon_hot_search.b1eab9.png) no-repeat 0 10px;
  padding-left: 76px;
  position: absolute;
  right: 0;
  top: 3px;
}

.hottop .form .input_wrapper {
  background: url(../images/design/search-main-s.5463eb.png) no-repeat 0 0;
  font-size: 0;
  height: 14px;
  padding: 5px 12px;
  position: relative;
  width: 93px;
}

.hottop .form .input_wrapper input[type=text] {
  background: none;
  border: none;
  color: #a4a4a4;
  font-size: 12px;
  font-style: italic;
  height: 14px;
  line-height: 14px;
  margin: 0;
  outline: none;
  padding: 0;
  width: 71px;
}

.hottop .form .input_wrapper button[type=submit] {
  background: transparent url(../images/design/icon_search-s.7cfb7d.png) no-repeat 50%;
  border: none;
  cursor: pointer;
  height: 13px;
  outline: none;
  position: absolute;
  right: 10px;
  top: 6px;
  width: 12px;
}

.row5 .w650 .ad {
  width: 100%;
  height: 90px;
}

.row6 .box_header .back {
  position: absolute;
  top: 9px;
  right: 44px;
  background: url(../images/design/live_radio_back.c6333c.png) no-repeat 0 0;
  width: 118px;
  height: 39px;
  cursor: pointer;
}
.row6 .country-radio {
  height: 155px;
}
.row6 .country-radio .carousel .swiper-button-prev {
  background: url(../images/design/live_radio_prev.496630.png) no-repeat 0 0;
  width: 21px;
  height: 42px;
  margin-top: -21px;
  left: -9px;
  top: 65px;
}
.row6 .country-radio .carousel .swiper-button-next {
  background: url(../images/design/live_radio_next.99e77d.png) no-repeat 0 0;
  width: 21px;
  height: 42px;
  margin-top: -21px;
  right: -9px;
  top: 65px;
}
.row6 .country-radio .swiper-container {
  overflow: visible;
}
.row6 .country-radio .swiper-container .swiper-slide .item {
  position: relative;
  opacity: 0.5;
}
.row6 .country-radio .swiper-container .swiper-slide .item.current:before {
  position: absolute;
  z-index: 2;
  content: "";
  background: url(../images/design/tips_playing.72482a.png) no-repeat 0 0;
  width: 61px;
  left: 50%;
  margin-left: -30px;
  height: 20px;
  top: 113px;
}
.row6 .country-radio .swiper-container .swiper-slide .item.current:after {
  position: absolute;
  z-index: 2;
  content: "";
  background: url(../images/design/icon_btn_pause_black.45ea7f.png) no-repeat 0 0;
  width: 45px;
  left: 50%;
  margin-left: -23px;
  height: 43px;
  top: 46px;
}
.row6 .country-radio .swiper-container .swiper-slide.swiper-slide-visible .item {
  opacity: 1;
}
.row6 .country-radio .swiper-container .swiper-slide.swiper-slide-visible .item:hover.current:after {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  content: "";
  background: url(../images/design/icon_btn_pause_black.45ea7f.png) no-repeat 0 0;
  width: 45px;
  left: 50%;
  margin-left: -23px;
  height: 43px;
  top: 46px;
}
.row6 .country-radio .swiper-container .swiper-slide.swiper-slide-visible .item:hover:after {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  content: "";
  background: url(../images/design/icon_btn_play_black.7edda8.png) no-repeat 0 0;
  width: 45px;
  left: 50%;
  margin-left: -23px;
  height: 43px;
  top: 46px;
}
.row6 .country-radio .item {
  transition: opacity 0.4s ease-in-out;
}
.row6 .country-radio .item .poster {
  position: relative;
  border: 6px solid #e2e6eb;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  width: 120px;
  height: 120px;
}
.row6 .country-radio .item .poster img {
  width: 120px;
  height: 120px;
  border-radius: 60px;
}
.row6 .country-radio .item .channel-name {
  text-align: center;
  font-size: 12px;
  padding-top: 3px;
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  font-weight: bolder;
}

.row7 .ad {
  width: 100%;
  height: 90px;
}
.row7 .ad img {
  display: block;
}

.row10 .huatiFor24 {
  background: url(../images/design/title_huati_border.c80762.png) no-repeat 0 0;
  height: 514px;
}
.row10 .huatiFor24 .huatiFor24_title {
  background: url(../images/design/title_huati.4d2fd7.png) no-repeat 0 0;
  width: 278px;
  height: 21px;
  margin: 0 auto;
}
.row10 .huatiFor24 .huatiFor24_content {
  padding: 0 25px;
  width: 230px;
}
.row10 .huatiFor24 .huatiFor24_content .subject {
  padding-top: 4px;
  width: 100%;
  height: 44px;
  line-height: 22px;
  overflow: hidden;
  font-size: 14px;
  color: #000000;
}
.row10 .huatiFor24 .huatiFor24_content .pic {
  height: 129px;
  width: 230px;
}
.row10 .huatiFor24 .huatiFor24_content .pic a img {
  width: 230px;
  height: 129px;
}
.row10 .dongtaiFor24 {
  background: url(../images/design/title_dongtai_border.2e9d74.png) no-repeat 0 0;
  height: 504px;
  overflow: hidden;
  margin-top: 20px;
}
.row10 .dongtaiFor24 .dongtaiFor24_title {
  background: url(../images/design/title_dongtai.ca7906.png) no-repeat 0 0;
  width: 278px;
  height: 21px;
  margin: 0 auto;
}

.listen_icon {
  position: fixed;
  top: 50%;
  margin-left: 434px;
  background-image: url(../images/design/ewlogo.abf5a0.png);
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: none;
  cursor: pointer;
  z-index: 11111;
}

.tip {
  position: fixed;
  top: 43%;
  left: 50%;
  margin-left: -200px;
  width: 411px;
  height: 279px;
  background-image: url(../images/design/di95_66.1f8fd4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  z-index: 11111;
}

.tipp {
  position: absolute;
  display: none;
  left: 412px;
  top: 22px;
  background-image: url(../images/design/di95_01.f32942.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 255px;
  height: 36px;
  cursor: pointer;
}

.tip .bg {
  position: relative;
}

.tip .share {
  position: absolute;
  right: 94px;
  top: 20px;
  background-image: url(../images/design/btn_share02.b22423.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.tip .appplus {
  position: absolute;
  right: 20px;
  top: 20px;
  background-image: url(../images/design/app.dfdb71.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 59px;
  height: 31px;
  cursor: pointer;
}

.tip .hide1 {
  position: absolute;
  right: 30px;
  top: -10px;
  background-image: url(../images/design/zxh.73fef7.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.tip .close {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
  background-image: url(../images/design/gb.346d0d.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.tip .listew {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 198px;
  overflow: hidden;
}

.tip .listew ul {
  width: 100%;
  overflow: hidden;
}

.tip .listew .itemew {
  position: relative;
  font-size: 14px;
  width: 393px;
  height: 24px;
  margin-bottom: 16px;
  margin-left: 8px;
  color: white;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

.tip .listew .itemew a {
  color: #ffffff;
}

.tip .listew .itemew a:hover {
  color: #000000;
}

.tip .listew .itemew i {
  margin-right: 10px;
  margin-left: 10px;
}

.tip .listew .itemew .current {
  width: 18px;
  height: 18px;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  animation: play 0.6s linear infinite alternate;
  -webkit-animation: play 0.6s linear infinite alternate;
}

.tip .listew .itemew .sound {
  width: 18px;
  height: 18px;
  background-image: url(../images/design/play.d6020c.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.tip .listew .hover {
  background-color: #f0f0f0;
  width: 393px;
  height: 24px;
  border-radius: 30px;
}

.tip .listew .hover a {
  color: black;
}

.tip .listew .itemew.hide {
  display: none;
}

@keyframes play {
  0% {
    background-image: url(../images/design/01.b019e7.png);
  }
  7.1% {
    /* 动作2 */
    background-image: url(../images/design/02.ce5d95.png);
  }
  14.2% {
    /* 动作3 */
    background-image: url(../images/design/03.93f942.png);
  }
  21.3% {
    /* 动作4 */
    background-image: url(../images/design/04.897cbc.png);
  }
  28.4% {
    /* 动作5 */
    background-image: url(../images/design/05.9f4a47.png);
  }
  35.5% {
    /* 动作6 */
    background-image: url(../images/design/06.954a63.png);
  }
  42.6% {
    /* 动作7 */
    background-image: url(../images/design/07.1339ac.png);
  }
  49.7% {
    /* 动作8 */
    background-image: url(../images/design/08.fd531e.png);
  }
  56.8% {
    /* 动作9 */
    background-image: url(../images/design/09.c52599.png);
  }
  63.9% {
    /* 动作10 */
    background-image: url(../images/design/10.b16653.png);
  }
  71% {
    /* 动作11 */
    background-image: url(../images/design/11.b28ffa.png);
  }
  78.1% {
    /* 动作12 */
    background-image: url(../images/design/12.4f8845.png);
  }
  85.2% {
    /* 动作13 */
    background-image: url(../images/design/13.5ee374.png);
  }
  92.3% {
    /* 动作14 */
    background-image: url(../images/design/14.c15a98.png);
  }
  100% {
    /* 动作15 */
    background-image: url(../images/design/15.89f2ad.png);
  }
}
@-webkit-keyframes play {
  0% {
    background-image: url(../images/design/01.b019e7.png);
  }
  7.1% {
    /* 动作2 */
    background-image: url(../images/design/02.ce5d95.png);
  }
  14.2% {
    /* 动作3 */
    background-image: url(../images/design/03.93f942.png);
  }
  21.3% {
    /* 动作4 */
    background-image: url(../images/design/04.897cbc.png);
  }
  28.4% {
    /* 动作5 */
    background-image: url(../images/design/05.9f4a47.png);
  }
  35.5% {
    /* 动作6 */
    background-image: url(../images/design/06.954a63.png);
  }
  42.6% {
    /* 动作7 */
    background-image: url(../images/design/07.1339ac.png);
  }
  49.7% {
    /* 动作8 */
    background-image: url(../images/design/08.fd531e.png);
  }
  56.8% {
    /* 动作9 */
    background-image: url(../images/design/09.c52599.png);
  }
  63.9% {
    /* 动作10 */
    background-image: url(../images/design/10.b16653.png);
  }
  71% {
    /* 动作11 */
    background-image: url(../images/design/11.b28ffa.png);
  }
  78.1% {
    /* 动作12 */
    background-image: url(../images/design/12.4f8845.png);
  }
  85.2% {
    /* 动作13 */
    background-image: url(../images/design/13.5ee374.png);
  }
  92.3% {
    /* 动作14 */
    background-image: url(../images/design/14.c15a98.png);
  }
  100% {
    /* 动作15 */
    background-image: url(../images/design/15.89f2ad.png);
  }
}
.tip {
  visibility: hidden;
}
/*!********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20231114_cnrRevision/components/carousel/index.scss ***!
  \********************************************************************************************************************************************************************************************/
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel .swiper-slide a img {
  display: block;
  width: 100%;
  height: auto;
}
.carousel .swiper-button-prev {
  position: absolute;
  z-index: 2;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  left: 0;
  top: 50%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z%27%20fill%3D%27%23007aff%27%2F%3E%3C%2Fsvg%3E");
  cursor: pointer;
}
.carousel .swiper-button-next {
  position: absolute;
  z-index: 2;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  right: 0;
  top: 50%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z%27%20fill%3D%27%23007aff%27%2F%3E%3C%2Fsvg%3E");
  cursor: pointer;
}
/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20231114_cnrRevision/components/swiper/index.scss ***!
  \******************************************************************************************************************************************************************************************/
.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}
/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20231114_cnrRevision/components/cloudChina/index.scss ***!
  \**********************************************************************************************************************************************************************************************/
@charset "UTF-8";
.wrapper .cloudChina-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.wrapper .cloudChina-box .video-wrapper {
  position: relative;
  background: #000000;
  width: 280px;
  height: 156px;
}

.wrapper .cloudChina-box .video-wrapper:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  /* Permalink - use to edit and share this gradient. 永久链接 - 用于编辑和分享此渐变： https://colorzilla.com/gradient-editor/#333333+0,333333+100&0+1,1+100 */
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0) 1%, #333333 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.wrapper .cloudChina-box .video-wrapper .cloudChina-video {
  width: 100%;
  height: 100%;
}

.wrapper .cloudChina-box .video-wrapper .cloudChina-poster {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.wrapper .cloudChina-box .video-wrapper .cloudChina-poster img {
  width: 100%;
  height: 100%;
}

.wrapper .cloudChina-box .video-wrapper .cloudChina-name {
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 6px;
  height: 12px;
  line-height: 12px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffeabb;
  font-weight: bolder;
  text-align: center;
  z-index: 3;
}

.wrapper .cloudChina-box .video-swiper-wrapper {
  position: relative;
  width: 280px;
  height: 35px;
  padding: 3px 0;
  background: #333333;
}

.wrapper .cloudChina-box .video-swiper-wrapper .arrow_left {
  position: absolute;
  background: url("https://mediabluk.cnr.cn/img/cnr/CNRCDP/2023/1013/c0450fd713c63169716809466773941710.png?auth=5ecbc13996374c1490e2c3b1363d6bca") no-repeat center;
  width: 20px;
  height: 35px;
  margin-top: -18px;
  top: 50%;
  left: 0px;
  cursor: pointer;
}

.wrapper .cloudChina-box .video-swiper-wrapper .arrow_right {
  position: absolute;
  background: url("https://mediabluk.cnr.cn/img/cnr/CNRCDP/2023/1013/f4d5550797641169716809477572507710.png?auth=333eb474772d7ee6ec35280dc82f5b2e") no-repeat center;
  width: 20px;
  height: 35px;
  margin-top: -18px;
  top: 50%;
  right: 0;
  cursor: pointer;
}

.wrapper .cloudChina-box .swiper-container {
  width: 240px;
  height: 35px;
  margin: 0 auto;
}

.wrapper .cloudChina-box .cloudChinaItem {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding: 0 5px;
  height: 100%;
  cursor: pointer;
}

.wrapper .cloudChina-box .cloudChinaItem .swiper_name {
  background: url(../images/design/line.8c253f.png) no-repeat center 28px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding-bottom: 5px;
}

.wrapper .cloudChina-box .cloudChinaItem.isSelect img {
  border-color: #ffffff;
}

.wrapper .cloudChina-box .cloudChinaItem img {
  box-sizing: border-box;
  display: block;
  border: 1px solid #6e6e6e;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
